.additional-content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 30px;
  background-color: #ffffff;
  flex-wrap: wrap;
}

.image-button {
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
  width: calc(25% - 10px);
  margin: 5px;
}

.image-button img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.button-content {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0);
}

.button-header {
  font-family: 'Platypi', 'Arial';
  font-size: 24px;
  color: #641734;
  margin-bottom: 10px;
}

.button-description {
  font-family: 'Jost', 'Arial';
  font-size: 18px;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  font-family: 'Jost', 'Arial';
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  background-color: #641734;
  border-radius: 5px;
}

.image-button:hover {
  transform: scale(1.025);
}

.additional-content2 {
  padding: 0px;
  text-align: center;
  line-height: 1.4;
}

.additional-content2 h1 {
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  font-family: 'Jost', 'Arial';
}

.additional-content2 p {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 60px;
  margin-right: 60px;
  color: #ffffff;
  font-size: 1.2rem;
  font-family: 'Jost', 'Arial';
  text-align: center;
  font-weight: bold;
}

.text-overlay {
  position: absolute;
  left: 0;
  width: 25%;
  padding: 20px;
  margin-left: 50px;
  box-sizing: border-box;
  color: #ffffff;
  opacity: 0;
  animation: fadeInAnimation 2s ease-in forwards;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.text-overlay h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'Rock Salt', 'Arial';
  line-height: 4rem;
}

.text-overlay h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-family: 'Jost', 'Arial';
  line-height: 0.5;
  color: #212121;
}

.text-overlay p {
  font-size: 1rem;
  font-family: 'Jost', 'Arial';
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
}

.address {
  margin-top: 100px;
  padding: 20px;
  margin-left: 900px;
  /* Will adjust in media query */
  animation: fadeInAnimation 2s ease-in forwards;
}

.address p {
  box-sizing: border-box;
  color: #ffffff;
  font-size: 1.1rem;
  font-family: 'Jost', 'Arial';
  text-align: left;
}

.address button {
  background-color: hsl(340, 61%, 22%);
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-family: 'Jost', 'Arial';
  font-weight: bold;
  margin: 2px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
}

.address button a {
  color: inherit;
  text-decoration: none;
}

.address button:hover {
  background-color: hsl(0, 0%, 0%);
}

.address h1 {
  box-sizing: border-box;
  color: #ffffff;
  font-size: 2.9rem;
  font-family: 'Rock Salt', 'Arial';
  text-align: left;
}

@media (max-width: 1000px) {
  .additional-content {
    flex-direction: column;
    align-items: center;
  }

  .image-button {
    width: 90%;
    margin: 10px 0;
  }

  .address {
    margin-left: 0;
    text-align: center;
  }

  .address h1 {
    font-size: 2rem;
  }

  .address p {
    font-size: 1rem;
  }

  .text-overlay {
    left: 45%;
    transform: translateX(-50%);
    width: 70%;
    margin-left: 0;
  }

  .text-overlay h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .text-overlay h2 {
    font-size: 1rem;
    line-height: 1.2;
  }

  .text-overlay p {
    font-size: 0.9rem;
  }
}